409. 最长回文串
为保证权益,题目请参考 409. 最长回文串(From LeetCode).
解决方案1
CPP
C++
#include <iostream>
#include <unordered_map>
#include <algorithm>
using namespace std;
class Solution
{
public:
int longestPalindrome(string s)
{
unordered_map<char, int> count;
for (char ch : s)
{
count[ch]++;
}
int ans = 0;
for (auto pp : count)
{
ans += pp.second / 2 * 2;
if (pp.second % 2 == 1 && ans % 2 == 0)
{
ans += 1;
}
}
return ans;
}
};
int main()
{
return 0;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32